/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 60px 20px;
  background: #f4f7fb;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

/* MAP */
.map-container {
  width: 100%;
  height: 300px;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-in-out;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 0;
}

/* LAYOUT */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* CONTACT INFO */
.contact-info {
  background:white;
  color: bl;
  padding: 25px;
  border-radius: 10px;
  animation: slideRight 1s ease-in-out;
  transition: 0.3s;
}

.contact-info:hover {
  transform: translateY(-5px);
}

.contact-info h3 {
  margin-top: 15px;
  font-size: 18px;
}

.contact-info p {
  font-size: 14px;
  line-height: 1.6;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  animation: slideLeft 1s ease-in-out;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: 0.3s;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
  transform: scale(1.02);
  box-shadow: 0 0 8px rgba(0,123,255,0.3);
}

/* BUTTON */
.submit-btn {
  background: #28a745;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}

.submit-btn:hover {
  background: #218838;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 250px;
  }

  .section-title {
    font-size: 24px;
  }
}